home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / glibc-1.09 / glibc-1 / glibc-1.09.1 / sysdeps / unix / bsd / osf1 / sys / mman.h
Encoding:
C/C++ Source or Header  |  1994-07-18  |  4.7 KB  |  115 lines

  1. /* Definitions for BSD-style memory management.  OSF/1 version.
  2. Copyright (C) 1994 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4.  
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Library General Public License as
  7. published by the Free Software Foundation; either version 2 of the
  8. License, or (at your option) any later version.
  9.  
  10. The GNU C Library is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13. Library General Public License for more details.
  14.  
  15. You should have received a copy of the GNU Library General Public
  16. License along with the GNU C Library; see the file COPYING.LIB.  If
  17. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  18. Cambridge, MA 02139, USA.  */
  19.  
  20. /* These are the bits used by 4.4 BSD and its derivatives.  On systems
  21.    (such as GNU) where these facilities are not system services but can be
  22.    emulated in the C library, these are the definitions we emulate.  */
  23.  
  24. #ifndef    _SYS_MMAN_H
  25.  
  26. #define    _SYS_MMAN_H    1
  27. #include <features.h>
  28.  
  29. #include <gnu/types.h>
  30. #define __need_size_t
  31. #include <stddef.h>
  32.  
  33.  
  34. /* Protections are chosen from these bits, OR'd together.  The
  35.    implementation does not necessarily support PROT_EXEC or PROT_WRITE
  36.    without PROT_READ.  The only guarantees are that no writing will be
  37.    allowed without PROT_WRITE and no access will be allowed for PROT_NONE. */
  38.  
  39. #define    PROT_NONE    0x00    /* No access.  */
  40. #define    PROT_READ    0x01    /* Pages can be read.  */
  41. #define    PROT_WRITE    0x02    /* Pages can be written.  */
  42. #define    PROT_EXEC    0x04    /* Pages can be executed.  */
  43.  
  44.  
  45. /* Flags contain mapping type, sharing type and options.  */
  46.  
  47. /* Mapping type (must choose one and only one of these).  */
  48. #define    MAP_FILE    0x00    /* Mapped from a file or device.  */
  49. #define    MAP_ANON    0x10    /* Allocated from anonymous virtual memory.  */
  50. #define    MAP_ANONYMOUS    MAP_ANON
  51. #define    MAP_TYPE    0xf0    /* Mask for type field.  */
  52.  
  53. /* Sharing types (must choose one and only one of these).  */
  54. #define    MAP_SHARED    0x01    /* Share changes.  */
  55. #define    MAP_PRIVATE    0x02    /* Changes private; copy pages on write.  */
  56.  
  57. /* Other flags.  */
  58. #define    MAP_FIXED    0x0100    /* Map address must be exactly as requested. */
  59. #define    MAP_VARIABLE    0    /* Absence of MAP_FIXED.  */
  60. #define    MAP_HASSEMPHORE    0x0200    /* Region may contain semaphores.  */
  61. #define    MAP_INHERIT    0x0400    /* Region is retained after exec.  */
  62. #define    MAP_UNALIGNED    0x0800    /* File offset need not be page-aligned.  */
  63.  
  64. /* Advice to `madvise'.  */
  65. #define    MADV_NORMAL    0    /* No further special treatment.  */
  66. #define    MADV_RANDOM    1    /* Expect random page references.  */
  67. #define    MADV_SEQUENTIAL    2    /* Expect sequential page references.  */
  68. #define    MADV_WILLNEED    3    /* Will need these pages.  */
  69. #define    MADV_DONTNEED    4    /* Don't need these pages.  */
  70. #define    MADV_SPACEAVAIL    5    /* Ensure that resources are available.  */
  71.  
  72. /* Flags to `msync'.  */
  73. #define MS_ASYNC    1        /* Asynchronous cache flush.  */
  74. #define MS_SYNC        3        /* Synchronous cache flush.  */
  75. #define MS_INVALIDATE    4        /* Invalidate cached pages.  */
  76.  
  77.  
  78. #include <sys/cdefs.h>
  79.  
  80. __BEGIN_DECLS
  81. /* Map addresses starting near ADDR and extending for LEN bytes.  from
  82.    OFFSET into the file FD describes according to PROT and FLAGS.  If ADDR
  83.    is nonzero, it is the desired mapping address.  If the MAP_FIXED bit is
  84.    set in FLAGS, the mapping will be at ADDR exactly (which must be
  85.    page-aligned); otherwise the system chooses a convenient nearby address.
  86.    The return value is the actual mapping address chosen or (caddr_t) -1
  87.    for errors (in which case `errno' is set).  A successful `mmap' call
  88.    deallocates any previous mapping for the affected region.  */
  89.  
  90. __caddr_t mmap __P ((__caddr_t __addr, size_t __len,
  91.              int __prot, int __flags, int __fd, off_t __offset));
  92.  
  93. /* Deallocate any mapping for the region starting at ADDR and extending LEN
  94.    bytes.  Returns 0 if successful, -1 for errors (and sets errno).  */
  95. int munmap __P ((__caddr_t __addr, size_t __len));
  96.  
  97. /* Change the memory protection of the region starting at ADDR and
  98.    extending LEN bytes to PROT.  Returns 0 if successful, -1 for errors
  99.    (and sets errno).  */
  100. int mprotect __P ((__caddr_t __addr, size_t __len, int __prot));
  101.  
  102. /* Synchronize the region starting at ADDR and extending LEN bytes with the
  103.    file it maps.  Filesystem operations on a file being mapped are
  104.    unpredictable before this is done.  */
  105. int msync __P ((__caddr_t __addr, size_t __len, int __flags));
  106.  
  107. /* Advise the system about particular usage patterns the program follows
  108.    for the region starting at ADDR and extending LEN bytes.  */
  109. int madvise __P ((__caddr_t __addr, size_t __len, int __advice));
  110.  
  111. __END_DECLS
  112.  
  113.  
  114. #endif    /* sys/mman.h */
  115.